This repository was archived by the owner on May 8, 2026. It is now read-only.
Set default maxFieldSectionSize to 16MB (#16088) - #355
Merged
Conversation
Long.MAX_VALUE cannot be encoded as a valid QUIC varint (only 62 value bits are usable, so Max can be 2^62-1 but JAVA Long MAX = 2^63-1), which can cause HTTP/3/WebTransport negotiation failures. A large but bounded default is safer and more compatible across implementations. as per [RFC9000](https://datatracker.ietf.org/doc/html/rfc9000?#name-variable-length-integer-enc) <img width="400" height="300" alt="Screenshot 2025-12-26 at 12 29 19 AM" src="https://github.com/user-attachments/assets/535048fd-1893-4ffd-bc9e-46c9d802e189" /> Changed default maxFieldSectionSize from Long.MAX_VALUE to 16 * 1024 * 1024 (16MB). Result Fixes #16087 Uses a QUIC-compliant value and prevents failures during SETTINGS exchange with peers. > Note : This did not affect any flow uses `new Http3Settings() `only if implementations use `Http3Settings.defaultSettings()` Result: Port of netty/netty#16088
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Long.MAX_VALUE cannot be encoded as a valid QUIC varint (only 62 value bits are usable, so Max can be 2^62-1 but JAVA Long MAX = 2^63-1), which can cause HTTP/3/WebTransport negotiation failures. A large but bounded default is safer and more compatible across implementations. as per
RFC9000
Changed default maxFieldSectionSize from Long.MAX_VALUE to 16 * 1024 * 1024 (16MB).
Result
Fixes #16087
Uses a QUIC-compliant value and prevents failures during SETTINGS exchange with peers.
Result:
Port of netty/netty#16088